home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / include / Xm / Form.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-30  |  1.5 KB  |  65 lines

  1. /* 
  2.  * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC. 
  3.  * ALL RIGHTS RESERVED 
  4. */ 
  5. /* 
  6.  * Motif Release 1.2
  7. */ 
  8. /*   $RCSfile: Form.h,v $ $Revision: 10.1 $ $Date: 1994/02/03 15:40:08 $ */
  9. /*
  10. *  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
  11. /*
  12. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  13. #ifndef _XmForm_h
  14. #define _XmForm_h
  15.  
  16.  
  17. #include <Xm/BulletinB.h>
  18.  
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22.  
  23. /*  Form Widget  */
  24.  
  25. externalref WidgetClass xmFormWidgetClass;
  26.  
  27. typedef struct _XmFormClassRec * XmFormWidgetClass;
  28. typedef struct _XmFormRec      * XmFormWidget;
  29.  
  30.  
  31. /* ifndef for Fast Subclassing  */
  32.  
  33. #ifndef XmIsForm
  34. #define XmIsForm(w)    XtIsSubclass(w, xmFormWidgetClass)
  35. #endif  /* XmIsForm */
  36.  
  37. /********    Public Function Declarations    ********/
  38. #ifdef _NO_PROTO
  39.  
  40. extern Widget XmCreateForm() ;
  41. extern Widget XmCreateFormDialog() ;
  42.  
  43. #else
  44.  
  45. extern Widget XmCreateForm( 
  46.                         Widget parent,
  47.                         char *name,
  48.                         ArgList arglist,
  49.                         Cardinal argcount) ;
  50. extern Widget XmCreateFormDialog( 
  51.                         Widget parent,
  52.                         char *name,
  53.                         ArgList arglist,
  54.                         Cardinal argcount) ;
  55.  
  56. #endif /* _NO_PROTO */
  57. /********    End Public Function Declarations    ********/
  58.  
  59. #ifdef __cplusplus
  60. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  61. #endif
  62.  
  63. #endif /* _XmForm_h */
  64. /* DON'T ADD ANYTHING AFTER THIS #endif */
  65.